home *** CD-ROM | disk | FTP | other *** search
-
- #import "AlexandraApp.h"
- #import "AMGErrorHandling.subproj/AMGErrorHandling.h"
- #import <misckit/misckit.h>
- #import "emccodes.h"
-
- //-----------------------------------------------------------
- // Category of MiscInfoController
- //-----------------------------------------------------------
-
- @interface MiscInfoController(GetStringTable)
-
- - strings;
-
- @end
-
- @implementation MiscInfoController(GetStringTable)
-
- - strings;
- {
- return strings;
- }
-
- @end
-
-
- @implementation AlexandraApp
-
- //-----------------------------------------------------------
- // initialise
- //-----------------------------------------------------------
-
- + new
- {
- AlexandraApp *new;
-
- new=[super new];
- [EMErrorManager new];
-
- return new;
- }
-
-
- //-----------------------------------------------------------
- // global attributes
- //-----------------------------------------------------------
-
- - (const char *)appVersion;
- {
- return [[(MiscInfoController *)infoController strings] valueForKey:"Version"];
- }
-
-
- //-----------------------------------------------------------
- // THAT'S IT
- //-----------------------------------------------------------
-
- @end
-
-
-
-